Unify compact subheaders and diff file navigation - #113
Conversation
- Add shared compact subheader styling for preview, file, and diff panels - Open diff files in the thread file viewer when available - Fix macOS cursor auto-hide and Option-modified shortcut matching
- Align header controls with the 12px right inset - Use a smaller control offset in window controls overlay mode
Co-authored-by: Julius Marminge <julius0216@outlook.com> Co-authored-by: codex <codex@users.noreply.github.com>
Co-authored-by: codex <codex@users.noreply.github.com>
Co-authored-by: codex <codex@users.noreply.github.com>
…g#2421) Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
…-20260616-right-panel-search-relay
…-20260616-right-panel-search-relay
…-20260616-right-panel-search-relay
…-20260616-right-panel-search-relay
…-20260616-right-panel-search-relay
…-20260616-right-panel-search-relay # Conflicts: # apps/server/src/provider/Layers/ProviderRegistry.test.ts
…-20260616-right-panel-search-relay # Conflicts: # apps/server/src/provider/Layers/ProviderRegistry.test.ts
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a38a422097
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| { | ||
| "platforms": ["apple"], | ||
| "apple": { | ||
| "modules": ["T3ComposerEditorModule"] | ||
| } |
There was a problem hiding this comment.
Add package metadata for the composer module
This new local Expo module is consumed by the iOS composer via requireNativeView("T3ComposerEditor"), but the module directory only adds expo-module.config.json/podspec files and no package.json metadata. Expo autolinking expects the module config to live next to a package manifest, so iOS prebuild will not discover/register T3ComposerEditorModule; mounting the composer will then fail with a missing native view. Add the local module package metadata (and app dependency/podspec path as needed) so it is autolinked.
Useful? React with 👍 / 👎.
| expect(workflow).toContain('--github-env-file "$RUNNER_TEMP/relay-client-tracing.env"'); | ||
| expect(workflow).toContain("name: relay-client-tracing-config"); | ||
| expect(workflow).toContain('cat "$config_path" >> "$GITHUB_ENV"'); |
There was a problem hiding this comment.
Commit the release workflow changes these assertions require
These new assertions currently fail because .github/workflows/release.yml in this commit does not contain --github-env-file, relay-client-tracing-config, or the cat "$config_path" >> "$GITHUB_ENV" step (a repo-wide rg only finds those strings in this test/deploy script). As a result the infra relay test suite will fail until the corresponding workflow update is included or the test is adjusted.
Useful? React with 👍 / 👎.
| #import <react/renderer/components/T3MarkdownTextSpec/Props.h> | ||
| #import <react/renderer/components/T3MarkdownTextSpec/RCTComponentViewHelpers.h> | ||
| #import "RCTFabricComponentsPlugins.h" | ||
| #import "Utils.h" |
There was a problem hiding this comment.
Remove missing Utils.h imports
This source file is included by T3MarkdownText.podspec's ios/**/*.{h,m,mm,cpp} glob, but it imports Utils.h; a repo-wide find . -name Utils.h has no match (the same missing include also appears in T3MarkdownTextManager.mm). Once the markdown module builds for iOS, the pod target will fail to compile with a missing-header error unless this unused/generated include is removed or the header is added.
Useful? React with 👍 / 👎.

What Changed
Why
UI Changes
Checklist